home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 1
/
Merciful - Disc 1.iso
/
software
/
p
/
parbench
/
parbenchv3.1.dms
/
parbenchv3.1.adf
/
Utilities
/
Remove.NET
< prev
next >
Wrap
AmigaDOS Script File
|
1992-12-16
|
2KB
|
86 lines
.key ""
echo " "
echo "*e[33mParNET REMOVE Script V3.0 ©1992 Vernon Graner*e[31m"
echo " "
echo "This script will DELETE the ParNET files from your"
echo "Amiga hard drive!"
echo " "
echo "WARNING!!!! This script will NOT work if"
echo "You Booted from this floppy!!!"
echo " "
echo "This script will remove files from the"
echo " L: Directory"
echo " DEVS: Directory"
echo " C: Directory"
echo " S: Directory"
echo "and COMPLETELY DELETE the ParNET Drawer and ALL CONTENTS!"
echo ""
echo "AFTER REMOVING THESE FILES PARNET WILL NO LONGER FUNCTION!"
echo ""
ask "*e[32mAre you SURE you want to continue (Y/N) ?*e[31m"
if warn
; make SURE the user did NOT boot from the install disk!
if exists SYS:Keys/Original
echo " "
echo "WARNING! WARNING! WARNING! WARNING! WARNING!"
echo " Deletion Protection key found! "
echo " "
echo "THIS SCRIPT WILL NOT WORK IF YOU HAVE BOOTED FROM THE PARNET FLOPPY!"
echo " "
echo "Boot from the device you wish to have ParNET removed from"
echo "then run this script again!"
wait 10
else
; >>>>>>>> Begin Actually Removing files here <<<<<<<<
echo "*e[0;0H*e[J" ;Clears the screen
echo " "
echo "Removing PARNet.Device From DEVS:....*e[32m "NOLINE
Delete DEVS:PARNet.device
echo "*e[31m"NOLINE
echo "Removing NETPNET-Handler from L:....*e[32m "NOLINE
Delete L:NETPNET-handler
echo "*e[31m"NOLINE
echo "Removing Mouse-Handler from L:....*e[32m "NOLINE
Delete L:Mouse-handler
echo "*e[31m"NOLINE
echo "Removing NETPNET-Server from C:....*e[32m "NOLINE
Delete C:NETPNet-server
echo "*e[31m"NOLINE
echo "Removing NetStat from C:....*e[32m "NOLINE
Delete C:NetStat
echo "*e[31m"NOLINE
echo "Removing ParNET-DriveList from S:...*e[32m "NOLINE
Delete S:ParNET-DriveList
echo "*e[31m"NOLINE
echo "Removing Network Icons...*e[32m "NOLINE
Delete SYS:PARNet/node.rinfo
echo "*e[31m"NOLINE
echo "Removing Mountlist from DEVS:...*e[32m"
Delete DEVS:Mountlist.ParNET#?
echo "*e[31m"NOLINE
echo "Removing the ParNET drawer & Contents from SYS:...*e[32m"
Delete SYS:PARNET ALL
Delete SYS:ParNET.info
echo "*e[31m"NOLINE
echo " "
echo "Removal Complete!"
endif
else
echo " "
echo "Parnet Removal Cancelled."
endcli
endif